home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0527.dms / q0527.adf / lists.h < prev    next >
C/C++ Source or Header  |  1991-02-02  |  328b  |  25 lines

  1.  
  2. /*
  3.  *  LISTS.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef _LISTS_H
  9. #define _LISTS_H
  10.  
  11. #ifndef EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14. #ifndef EXEC_LISTS_H
  15. #include <exec/lists.h>
  16. #endif
  17.  
  18. extern void *GetHead();
  19. extern void *GetTail();
  20. extern void *GetSucc();
  21. extern void *GetPred();
  22.  
  23. #endif
  24.  
  25.